Skip to content

Method: static {...}

1: package de.fhdw.gaming.ipspiel23.dilemma.domain;
2:
3: /**
4: * For representing possible answers in Gefangenen-Dilemma.
5: */
6: public enum DilemmaAnswerType {
7:
8: /**
9: * Possible answer of players.
10: */
11: DEFECT, COOPERATE;
12: }